home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / text / quilldem.lha / Demo / Rexx / Time.quill < prev   
Text File  |  1995-08-29  |  231b  |  20 lines

  1.  
  2. /**
  3.  **  $VER: Time.quill 1.0 (30.9.94)
  4.  **  By Timothy J. Aston
  5.  **
  6.  **  Quickly nserts the time at the current cursor position.
  7.  **
  8.  **/
  9.  
  10.  
  11. /* Some setup first.
  12.  */
  13. options results
  14. options failat 200
  15.  
  16. main:
  17.     'TEXT' time()
  18.  
  19.     exit
  20.